2f79616c46028e3a5242bc3b833a97ab1003ba8e,test/common/src/main/java/org/glassfish/soteria/test/ArquillianBase.java,ArquillianBase,readFromServer,#String#,73

Before Change


    }
    
    protected String readFromServer(String path) {
    	return responseFromServer(path)
    			.getContentAsString();
    }
    
    protected WebResponse responseFromServer(String path) {

After Change


    
    protected String readFromServer(String path) {
    	response = responseFromServer(path)
			        .getContentAsString();
    	return response;
    }
    
    protected WebResponse responseFromServer(String path) {